home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / include / RCS / lastlog.h,v < prev    next >
Encoding:
Text File  |  1988-07-15  |  539 b   |  38 lines

  1. head     1.1;
  2. access   ;
  3. symbols  ;
  4. locks    ; strict;
  5. comment  @ * @;
  6.  
  7.  
  8. 1.1
  9. date     88.07.14.17.28.16;  author ouster;  state Exp;
  10. branches ;
  11. next     ;
  12.  
  13.  
  14. desc
  15. @@
  16.  
  17.  
  18.  
  19. 1.1
  20. log
  21. @Initial revision
  22. @
  23. text
  24. @/*
  25.  * Copyright (c) 1980 Regents of the University of California.
  26.  * All rights reserved.  The Berkeley software License Agreement
  27.  * specifies the terms and conditions for redistribution.
  28.  *
  29.  *    @@(#)lastlog.h    5.1 (Berkeley) 5/30/85
  30.  */
  31.  
  32. struct lastlog {
  33.     time_t    ll_time;
  34.     char    ll_line[8];
  35.     char    ll_host[16];        /* same as in utmp */
  36. };
  37. @
  38.